home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
gnu
/
dejagnu.lha
/
dejagnu-1.0.1
/
tcl
/
compat
/
testpid.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-11-06
|
907b
|
31 lines
/*
* testpid.c --
*
* This file contains a simple program that will compile
* correctly if and only if <sys/types.h> defines the
* type pid_t. It is used to determine whether this type
* is defined on a given system.
*
* Copyright 1991 Regents of the University of California
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that this copyright
* notice appears in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*/
#ifndef lint
static char rcsid[] = "$Header: /user6/ouster/tcl/compat/RCS/testpid.c,v 1.2 91/12/06 15:31:32 ouster Exp $ SPRITE (Berkeley)";
#endif /* not lint */
#include <sys/types.h>
pid_t pid;
int main()
{
return 0;
}